/*新闻*/
.news-list-con-ul {
	display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
}

.news-list-con-ul .news-list-con-item {
    width: 100%;
    height: 50.6rem;
    border-radius: .8rem;
    box-shadow: 0px .3px .6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    background-color: #F6F6F6;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-list-con-ul .news-list-con-item:hover .news-title,
.news-list-con-ul .news-list-con-item:hover .news-footer,
.news-list-con-ul .news-list-con-item:hover .news-footer .del-line {
	color: var(--main-color);
}

.news-list-con-ul .news-list-con-item .news-img {
	border-radius: inherit;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	overflow: hidden;
	position: relative;
}

.news-list-con-ul .news-list-con-item .news-img i {
	border-radius: inherit;
	background: no-repeat center center;
	background-size: cover;
	transition: all 300ms;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.news-list-con-ul .news-list-con-item .news-img i:hover {
	transform: scale(1.1);
}

.news-list-con-ul .news-list-con-item .news-img::after {
	content: '';
	padding-top: 51.33%;
	display: block;
	width: 0;
	height: 0;
	float: left;
}

.news-list-con-ul .news-list-con-item .news-title {
	text-align: left;
	font-weight: 700;
	font-size: 2rem;
	color: var(--main-text);
	overflow: hidden;
	display: -webkit-box;
	/* 将对象作为弹性伸缩盒子模型显示 。*/
	text-overflow: ellipsis;
	/* 可以用来多行文本的情况下，用省略号“...”隐藏超出范围的文本 。*/
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 。*/
	-webkit-line-clamp: 3;
	/* 限制在一个块元素显示的文本的行数 */
	line-height: 3.2rem;
}

.news-list-con-ul .news-list-con-item .news-con {
	font-size: 1.8rem;
	color: var(--f-text);
	overflow: hidden;
	display: -webkit-box;
	/* 将对象作为弹性伸缩盒子模型显示 。*/
	text-overflow: ellipsis;
	/* 可以用来多行文本的情况下，用省略号“...”隐藏超出范围的文本 。*/
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 。*/
	-webkit-line-clamp: 2;
	/* 限制在一个块元素显示的文本的行数 */
	line-height: 2.6rem;
	margin-top: .7em;
}

.news-list-con-ul .news-list-con-item .news-footer {
	font-size: 1.8rem;
	color: var(--nav-item);
	display: flex;
	justify-content: space-between;
}
